main{
    display: flex;
    flex-direction: row;
}

footer{
    margin-top: 0rem;
}

#green-side{
    position: relative; /* Para que o child 'color-band' use esse como referência */
    background-color: var(--green);
    display: flex;
    align-items: left;
    flex-direction: column;
    min-width: 20rem;
    height: 65vh;
    padding: 11rem 20rem 11rem 11rem;
}

.color-band{
    position: absolute;

    top: 3%; /* Ajuste essa posição conforme necessário */
    left: 40.1rem;

    width: 17rem; /* Ajuste o ta5manho conforme necessário */
    z-index: 1;
}

.color-band2{
    position: absolute;

    top: 45.8rem; /* Ajuste essa posição conforme necessário */
    left: 0%;

    width: 30rem; /* Ajuste o ta5manho conforme necessário */
    z-index: 1;
}

#white-side{
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 97vh;
    z-index: 2;
}

.cont{
    width: 30rem;
}

.question{
    width: 100%;
}

.show-btn {
    position: absolute;
    right: 1.5rem;
    top: 3rem;
    cursor: pointer;
    font-size: 1.3rem;
    color: #494949;
}

h1{margin-bottom: 0;}

.p-16-light-white{
    max-width: 22rem;
}


@media (max-width: 920px){
    main{
        flex-wrap: wrap;
    }
}